chore(deps): upgrade all packages to latest#167
Conversation
Move `yaml` to pnpm catalog for consistent version management across root, core, and cli packages. Co-Authored-By: Claude <noreply@anthropic.com>
🦋 Changeset detectedLatest commit: f638409 The changes in this PR will be included in the next version bump. This PR includes changesets to release 0 packagesWhen changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types Not sure what this means? Click here to learn what changesets are. Click here if you're a maintainer who wants to add another changeset to this PR |
|
The latest updates on your projects. Learn more about Vercel for GitHub. |
The bundler tsconfig references bun types but the package was missing from devDependencies, causing CI typecheck failures after lockfile changes. Co-Authored-By: Claude <noreply@anthropic.com>
Merging this PR will not alter performance
Comparing Footnotes
|
|
No actionable comments were generated in the recent review. 🎉 ℹ️ Recent review info⚙️ Run configurationConfiguration used: Path: .coderabbit.yaml Review profile: ASSERTIVE Plan: Pro Run ID: ⛔ Files ignored due to path filters (1)
📒 Files selected for processing (1)
📝 WalkthroughWalkthroughThe PR updates development and workspace dependencies across the monorepo. Root Estimated code review effort🎯 2 (Simple) | ⏱️ ~12 minutes Possibly related PRs
🚥 Pre-merge checks | ✅ 3✅ Passed checks (3 passed)
✏️ Tip: You can configure your own custom pre-merge checks in the settings. ✨ Finishing Touches🧪 Generate unit tests (beta)
Comment |
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@packages/core/package.json`:
- Around line 85-91: The two changeset files (.changeset/fix-lint-warnings.md
and .changeset/upgrade-deps-latest.md) only contain YAML frontmatter and must
declare the affected packages and change types; update each changeset to include
entries for the modified packages (core, cli, config, utils, bundler) with
appropriate change types (e.g., `@kidd-cli/core`: patch, `@kidd-cli/cli`: patch,
`@kidd-cli/config`: patch, `@kidd-cli/utils`: patch, `@kidd-cli/bundler`: patch) so
the changesets are valid and will trigger package releases.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro
Run ID: e8db3ff3-3410-4bc8-932f-b17948b6c97b
⛔ Files ignored due to path filters (1)
pnpm-lock.yamlis excluded by!**/pnpm-lock.yaml,!pnpm-lock.yaml
📒 Files selected for processing (5)
package.jsonpackages/bundler/package.jsonpackages/cli/package.jsonpackages/core/package.jsonpnpm-workspace.yaml
Co-Authored-By: Claude <noreply@anthropic.com>
There was a problem hiding this comment.
Actionable comments posted: 1
🤖 Prompt for all review comments with AI agents
Verify each finding against the current code and only fix it if needed.
Inline comments:
In `@packages/bundler/package.json`:
- Line 51: Remove the unnecessary TypeScript type package from devDependencies:
delete the "@types/bun" entry from the bundler package.json devDependencies
section since the code only invokes bun as a CLI subprocess and does not import
or use Bun runtime APIs; update package.json accordingly and run npm/yarn
install to refresh lockfile if needed.
🪄 Autofix (Beta)
Fix all unresolved CodeRabbit comments on this PR:
- Push a commit to this branch (recommended)
- Create a new PR with the fixes
ℹ️ Review info
⚙️ Run configuration
Configuration used: Path: .coderabbit.yaml
Review profile: ASSERTIVE
Plan: Pro
Run ID: b70a9b84-a251-488a-b055-6d4615bb4568
⛔ Files ignored due to path filters (1)
.changeset/fifty-poems-shake.mdis excluded by!.changeset/**
📒 Files selected for processing (2)
packages/bundler/package.jsonpackages/cli/package.json
The bundler only invokes bun as a CLI subprocess — no Bun runtime APIs or types are used. Remove "bun" from tsconfig types array and @types/bun from devDependencies. Co-Authored-By: Claude <noreply@anthropic.com>
Summary
@typescript/native-preview,@zpress/kit,oxfmt,oxlint,turbo,dotenv,@types/node,@vitest/coverage-v8,tsdown,vitestyamlto pnpm catalog (used in root,packages/core,packages/cli)Test plan
pnpm checkpasses (typecheck + lint + format)pnpm testpasses